def DUP_TOP(ctx: _VSContext, instruction: dis.Instruction): """ Duplicates the top-most item on the stack. """ item = ctx.pop() ctx.push(item) ctx.push(item) return ctx